home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / UTIL / HUNDOSHI-EDIT.sit / HUNDOSHI-EDIT / PlugIn Develop / HunPlugIntf.h < prev    next >
Text File  |  1994-01-31  |  1KB  |  40 lines

  1. /*********************************************************************
  2. * HunPlugIntf.h - HUNDOSHI-EDIT Tshudure module interface
  3. * Compiler = THINK C 6.0.1
  4. ***********************************************************************
  5. * (C) Copyright Hirofumi Okuyama 1993
  6. ***********************************************************************
  7. * HUNDOSHI-EDIT:by Takeshi Yoneki / OSTRA,
  8. *                Copyright 1993, 1994 (C) OSTRACISM CO.
  9. ***********************************************************************
  10. * Modification History
  11. * by whom            date            reason
  12. * -------------        ----------        -----------------------
  13. * H.Okuyama            93/Oct/17        First Creation
  14. * T.Yoneki            1994.01.30        Modify for HUNDOSHI Ver 1.0
  15. **********************************************************************/
  16.  
  17. #define        plugCmdInit        1
  18. #define        plugCmdDo        2
  19. #define        plugCmdRedo        3
  20. #define        plugCmdNoDlgDo    4
  21.  
  22. typedef struct {
  23.     short        command;
  24.     Handle        inText;
  25.     long        inSize;
  26.     Handle        outText;
  27.     long        outSize;
  28.     SignedByte    pref[8];
  29.     Boolean        cancel;
  30.     short        error;
  31.     long        refCon;
  32.     short        version;
  33.     short        systemVRefNum;
  34.     short        applVRefNum;
  35.     short        plugVRefNum;
  36.     short        rsv[43];
  37. } HunPlugParmBlk, *HunPlugParmPtr;
  38.  
  39. /* end of HunPlugIntf.h    */
  40.